﻿body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f4f7fa, #e2ebf0);
    min-height: 100vh;
}

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

.welcome-banner {
   background-image:url(../img/Dashboard.jpg);
    color: black;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    height:180px;
}

    .welcome-banner h2 {
        font-weight: 600;
    }

.icon-card {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
    z-index: 9;
}

    .icon-card:hover {
        transform: translateY(-5px);
    }

.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #e9ecef;
}

.subpage-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    z-index: 1000;
    min-width: 200px;
    text-align: left;
}

.card-with-dropdown:hover .subpage-list {
    display: block;
}

.subpage-list a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px dashed #686868;
}

    .subpage-list a:hover {
        background-color: #f5f5f5;
    }

.secondary-actions .btn {
    border-radius: 30px;
    padding: 8px 16px;
    font-weight: 500;
}

footer {
    background-color: #001f3f;
    color: white;
    padding: 20px 0;
}

    footer a {
        color: #ffffffcc;
    }

        footer a:hover {
            text-decoration: underline;
        }

.card-header {
    background: #ff6600;
}

/* Custom Button Colors */
.btn-custom-pink {
  border:1px solid black;
    color: black;
    transition: all 0.3s ease-in;
}

.btn-custom-teal {
    border: 1px solid #2434d8;
    color: #2434d8;
    transition: all 0.3s ease-in;
}

.btn-custom-red {
    border: 1px solid #10630e;
    color: #10630e;
    transition: all 0.3s ease-in;
}

.btn-custom-orange {
    border: 1px solid #c17600;
    color: #c17600;
    transition: all 0.3s ease-in;
}

.btn-custom-green {
    border: 1px solid #2ecc71;
    color: #2ecc71;
    transition: all 0.3s ease-in;
}

.btn-custom-purple {
    border: 1px solid #ff6600;
    color: #ff6600;
    transition: all 0.3s ease-in;
}


.btn-custom-bluegreen {
    border: 1px solid #a32410;
    color: #a32410;
    transition: all 0.3s ease-in;
}
